Builder

class Builder

A builder of KeyPressed.

Builders are created by invoking newBuilder. Each of the setter methods modifies the state of the builder and returns the same instance. Builders are not thread-safe and should not be used concurrently from multiple threads without external synchronization.

Functions

Link copied to clipboard
open fun build(): KeyPressed
Returns a new KeyPressed instance built from the current state of this builder.
Link copied to clipboard
open fun keyChar(keyChar: Char): KeyPressed.Builder
Sets the key character corresponding to the pressed key.
Link copied to clipboard
open fun keyLocation(keyLocation: KeyLocation): KeyPressed.Builder
Sets the location of the key on the keyboard.
Link copied to clipboard
Sets the keyboard modifiers applied.